home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinNT AppInit.xpl < prev    next >
Text File  |  2004-03-02  |  1KB  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH 1"="System\Security\File System"
  5. "UIPATH 2"="Virtual Paranoia\Hijacker Places"
  6. "NAME"="App Init DLLs"
  7. "VERSION"="1.19"
  8. "OSVERSION"="0101011"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Init DLLs"
  11. "DESCRIPTION 1"="This settings causes Windows to load the specified DLLs every time a program is started."
  12. "DESCRIPTION 2"="If you have trouble running some applications and this field is not empty, it is possible that the DLLs are responsible for this behavior."
  13. "DESCRIPTION 3"="In this case, clear this field and restart your computer."
  14. "DESCRIPTION 4"="For some NVidia based video cards, the default entry will show "NVDESK32.DLL" (no quotes) - do not remove this item if using NVidia based card that shows this."
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"=" "
  19.  
  20.  
  21.  
  22. sPath="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Windows\AppInit_DLLs"
  23. Sub Plugin_Initialize 
  24.   s=RegReadValue(sPath)
  25.   Call SetUIElement(1,s)
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  s=GetUIElement(1)
  33.  Call RegWriteValue(sPath,s,1)
  34.  Call Restart
  35. End Sub
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub
  39.